1
0
mirror of https://github.com/stefanocasazza/ULib.git synced 2025-09-28 19:05:55 +08:00
ULib/tests/ulib/plugin/product2.cpp
2015-01-23 17:24:36 +01:00

14 lines
321 B
C++

// product2.cpp
#include "product.h"
class U_EXPORT Product2 : public Product {
public:
Product2() {}
virtual ~Product2() { (void) write(1, U_CONSTANT_TO_PARAM("distruttore Product2\n")); }
virtual void print(ostream& os) const { os << "I am Product2" << endl; }
};
U_CREAT_FUNC(product2, Product2)