Go to the documentation of this file.00001 #ifndef LIBRMS_LOG_HPP_
00002 #define LIBRMS_LOG_HPP_
00003
00004 #include <string>
00005 #include <rms/rms.hpp>
00006
00007 namespace librms
00008 {
00009
00010 class rms;
00011
00012 class log
00013 {
00014 public:
00015 log(librms::rms *client, unsigned int id, unsigned int appointment_id, unsigned int type_id, std::string label, std::string entry, std::string created, std::string modified);
00016
00017 unsigned int get_id() const;
00018
00019 unsigned int get_appointment_id() const;
00020
00021 unsigned int get_type_id() const;
00022
00023 std::string get_label() const;
00024
00025 std::string get_entry() const;
00026
00027 std::string get_created() const;
00028
00029 std::string get_modified() const;
00030
00031 private:
00032 std::string label_, entry_, created_, modified_;
00033 unsigned int id_, appointment_id_, type_id_;
00034 librms::rms *client_;
00035 };
00036
00037 }
00038
00039 #endif