mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 05:37:55 +00:00
33 lines
478 B
C++
33 lines
478 B
C++
/**
|
|
@file
|
|
|
|
@verbatim
|
|
PURPOSE: (Test that an empty PYTHON_MODULE won't cause errors or have any effect.)
|
|
PYTHON_MODULE: ()
|
|
@endverbatim
|
|
*******************************************************************************/
|
|
|
|
#ifndef TRICKFOOD_HH
|
|
#define TRICKFOOD_HH
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
enum Fast {
|
|
Pizza,
|
|
Burger,
|
|
Taco
|
|
};
|
|
|
|
class Food {
|
|
public:
|
|
Food() : fast(Taco) {}
|
|
void print_me() { std::cout << "Food::print_me!" << std::endl; }
|
|
Fast fast;
|
|
};
|
|
|
|
|
|
#endif
|
|
|