About me





class Jogy : public Plamen, public Lubka
{
  public:
    Jogy() 
    {
      Born("Sofia",     // City
           "Bulgaria",  // Country   Bulgaria
            30,         // Day 
           "Oct",       // Month
            1972)       // Year

      email[0] = "jogy@sirma.bg";        // At work
      email[1] = "jogybl@yahoo.com";     // At Yahoo
    }
	
    char *GetName()     { return "Ognian"; }
    char *GetSurname()  { return "Plamenov"; }
    char *GetLastName() { return "Chernokojev"; }
 
    void Picture() 
    {
      Draw( Jogy );
    }

    void Education() 
    { 
	
      Graduate("Sofia High School of Mathematics", 1990); 
	  
      TU_Sofia.FKTT.BecameMasterOfScience("Electronic Technologies", 1996);			   

	  
      Became(  MCP  , TDate(18, "Dec", 2001));
	  
      Became(  MCP  , TDate(11, "Jun", 2004));
	  
    }
      
    void Job()
    {
      SirmaAI.EngviewSystems.Work("CAD/CAM division");
    }  
	   
	   
The girl I love!friend class Ani;
  
  friend class Naso;
  friend class Kalina;
  friend class Rosen;
  friend class Diana;
  friend class Evgeni;
  friend class Toty;
	   
  protected:
    char *email[3];
};




Back to home Back to main