3.1.1.3.1 例: .hインタフェース

例3-1 hインタフェース

#include <string>
/**
* Tuxedo service business interface
*/
class TuxService
{
public:
virtual std::string TOUPPER(const std::string inputString) = 0;
};