MICO Platform
 All Classes Namespaces Functions Variables Friends
DublinCore.hpp
1 #ifndef HAVE_DUBLINCORE_HPP
2 #define HAVE_DUBLINCORE_HPP 1
3 
4 #include <utime.h>
5 #include "rdf_model.hpp"
6 
7 namespace mico {
8  namespace persistence {
9 
10  class DublinCore {
11 
13  using std::string;
14 
15  private:
16 
17  string title;
18  string description;
19  string type;
20 
21  URI creator;
22  URI source;
23 
24  time_t created;
25 
26  };
27 
28  }
29 }
30 
31 
32 #endif
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in c...
Definition: http_client.cpp:23
Definition: DublinCore.hpp:10
A URI.
Definition: rdf_model.hpp:74