~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/storable.h

  • Committer: Mark Atwood
  • Date: 2011-08-11 03:05:03 UTC
  • mfrom: (2385.1.12 refactor4)
  • Revision ID: me@mark.atwood.name-20110811030503-rp9xjihc5x3y0x4q
mergeĀ lp:~olafvdspek/drizzle/refactor4

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef DRIZZLED_UTIL_STORABLE_H
22
 
#define DRIZZLED_UTIL_STORABLE_H
23
 
 
24
 
namespace drizzled
25
 
{
26
 
 
27
 
namespace util
28
 
{
29
 
 
30
 
class Storable {
 
21
#pragma once
 
22
 
 
23
namespace drizzled {
 
24
namespace util {
 
25
 
 
26
class Storable 
 
27
{
31
28
public:
32
 
  virtual ~Storable()
33
 
  { }
 
29
  virtual ~Storable() { }
34
30
};
35
31
 
36
32
} /* namespace util */
37
33
} /* namespace drizzled */
38
34
 
39
 
#endif /* DRIZZLED_UTIL_STORABLE_H */