~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-23 14:35:15 UTC
  • mto: (2247.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2248.
  • Revision ID: olafvdspek@gmail.com-20110323143515-p4tn90h1ipnr7rgx
Refactor Identifier::getSQLPath()

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
public:
32
32
  typedef const Identifier& const_reference;
33
33
 
34
 
  virtual void getSQLPath(std::string &arg) const;
35
 
 
36
34
  virtual ~Identifier()
37
 
  { }
 
35
  { 
 
36
        }
 
37
 
 
38
        virtual std::string getSQLPath() const 
 
39
        { 
 
40
                return "";
 
41
        }
 
42
 
38
43
};
39
44
 
40
45
} // namespace drizzled