Alchemy  1.0
A framework to robustly process network messages and structured data
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
meta_error.h
Go to the documentation of this file.
1 /// @file meta_error.h
2 ///
3 /// @brief Defines Template-Meta programming error types.
4 ///
5 /// A collection of definitions to assist with reporting errors with
6 /// Template Meta Programming Error states.
7 ///
8 /// The MIT License(MIT)
9 /// @copyright 2014 Paul M Watt
10 // ****************************************************************************
11 #ifndef META_ERROR_H_INCLUDED
12 #define META_ERROR_H_INCLUDED
13 
14 namespace Hg
15 {
16 
17 namespace error
18 {
19 /* Static Errors for Improved Readability ************************************/
20 struct Undefined_Type;
21 struct Invalid_Type_Size;
22 
23 } // error
24 } // types
25 
26 #endif