~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/storable.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-17 14:00:56 UTC
  • mto: (2241.2.7 refactor)
  • mto: This revision was merged to the branch mainline in revision 2245.
  • Revision ID: olafvdspek@gmail.com-20110317140056-i3cye1d6uyt5zlt1
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
#pragma once
22
22
 
23
 
namespace drizzled
24
 
{
25
 
 
26
 
namespace util
27
 
{
28
 
 
29
 
class Storable {
 
23
namespace drizzled {
 
24
namespace util {
 
25
 
 
26
class Storable 
 
27
{
30
28
public:
31
 
  virtual ~Storable()
32
 
  { }
 
29
  virtual ~Storable() { }
33
30
};
34
31
 
35
32
} /* namespace util */