Nommer le fichier exemple.h
#ifndef EXEMPLE_H_INCLUDED
#define EXEMPLE_H_INCLUDED
#include <string>
#include "scxx/PWOSequence.h"
class Classe
{
public:
        Classe (); 
        ~Classe ();
        void setValue (PWOString & val);
        PWOString getValue (void);
        void setString (const std::string & val);
        std::string getString (void);
private:
        PWOString value;
        std::string str;
};
#endif