#ifndef __ANTHEM__DOMAIN_H #define __ANTHEM__DOMAIN_H namespace anthem { namespace ast { //////////////////////////////////////////////////////////////////////////////////////////////////// // // Domain // //////////////////////////////////////////////////////////////////////////////////////////////////// enum class Domain { General, Integer, Unknown, }; //////////////////////////////////////////////////////////////////////////////////////////////////// } } #endif