mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
14 lines
340 B
C++
14 lines
340 B
C++
// product1.cpp
|
|
|
|
#include "product.h"
|
|
|
|
class U_EXPORT Product1 : public Product {
|
|
public:
|
|
Product1() {}
|
|
virtual ~Product1() { (void) write(1, U_CONSTANT_TO_PARAM("distruttore Product1\n")); }
|
|
|
|
virtual void print(ostream& os) const { os.write(U_CONSTANT_TO_PARAM("I am Product1\n")); }
|
|
};
|
|
|
|
U_CREAT_FUNC(product1, Product1)
|