patrick
/
plasp
Archived
1
0
Fork 0
This repository has been archived on 2023-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
plasp/include/plasp/sas/Value.h

30 lines
497 B
C++

#ifndef __SAS__VALUE_H
#define __SAS__VALUE_H
#include <string>
namespace plasp
{
namespace sas
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Value
//
////////////////////////////////////////////////////////////////////////////////////////////////////
struct Value
{
static const Value Any;
std::string name;
};
////////////////////////////////////////////////////////////////////////////////////////////////////
}
}
#endif