/test/language/unclassified/aux_overload01.h
http://github.com/tybor/Liberty · C Header · 15 lines · 12 code · 3 blank · 0 comment · 0 complexity · b4811540a199d45d6da639984a1ef3b2 MD5 · raw file
- #ifndef __OVERLOAD__
- #define __OVERLOAD__
- class Overload
- {
- public:
- Overload(){}
- void value(int v){ internal_value = v; }
- int value(){ return internal_value; }
- private:
- int internal_value;
- };
- #endif