Page principale | Liste des namespaces | Hiérarchie des classes | Liste par ordre alphabétique | Liste des composants | Liste des fichiers | Composants | Déclarations

Time.h

Aller à la documentation de ce fichier.
00001 /***************************************************************************
00002                           Time.h  -  description
00003                              -------------------
00004     begin                : dim jui 6 2003
00005     copyright            : (C) 2003 by Michel Dubois, Yann Le Guyadec
00006     email                : Michel.Dubois@univ-ubs.fr, Yann.Le-Guyadec@univ-ubs.fr
00007  ***************************************************************************/
00008 
00009 /***************************************************************************
00010  *                                                                         *
00011  *   This program is free software; you can redistribute it and/or modify  *
00012  *   it under the terms of the GNU General Public License as published by  *
00013  *   the Free Software Foundation; either version 2 of the License, or     *
00014  *   (at your option) any later version.                                   *
00015  *                                                                         *
00016  ***************************************************************************/
00017 
00018 // Modèle statique
00019 /*
00020   * changes :
00021   *  - 08/06/03 MD Creation !
00022   */
00023 
00024 
00025 #ifndef __MDTIME__
00026 #define __MDTIME__
00027 
00028 namespace API {
00029 
00030 class Time
00031 {
00032   public:
00033     Time  ();
00034         Time  (unsigned int sec, unsigned int min, unsigned int hour, unsigned int day, unsigned int month, unsigned int year);
00035     Time  (const unsigned int* time);
00036     Time  (const Time * time);
00037         Time  (const Time& time);
00038     virtual ~Time();
00039     const Time& operator  = (const Time& time);
00040     unsigned int& Time::operator [] (const unsigned int i) const;
00041     operator unsigned int* ();
00042 
00043     unsigned int second;
00044     unsigned int minute;
00045     unsigned int hour;
00046     unsigned int day;
00047     unsigned int month;
00048     unsigned int year;
00049     
00050 };// END CLASS DEFINITION Time
00051 
00052 }
00053 #endif // __TIME__

Généré le Mon Mar 1 01:29:41 2004 par doxygen 1.3.3