#if !defined _SURVEY_H
#define _SURVEY_H (1)

class Survey
{
  public:
    Survey(int aid);
    ~Survey(void);
    void readData(char * afile);
        
  private:
    int m_id;
};


#endif // _SURVEY_H
