~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lex_input_stream.h

Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef DRIZZLED_LEX_INPUT_STREAM_H
21
 
#define DRIZZLED_LEX_INPUT_STREAM_H
 
20
#pragma once
22
21
 
23
22
/**
24
23
  @brief This class represents the character input stream consumed during
371
370
    Starting position of the TEXT_STRING or IDENT in the pre-processed
372
371
    buffer.
373
372
 
374
 
    NOTE: this member must be used within DRIZZLElex() function only.
 
373
    NOTE: this member must be used within base_sql_lex() function only.
375
374
  */
376
375
  const char *m_cpp_text_start;
377
376
 
379
378
    Ending position of the TEXT_STRING or IDENT in the pre-processed
380
379
    buffer.
381
380
 
382
 
    NOTE: this member must be used within DRIZZLElex() function only.
 
381
    NOTE: this member must be used within base_sql_lex() function only.
383
382
    */
384
383
  const char *m_cpp_text_end;
385
384
 
387
386
 
388
387
} /* namespace drizzled */
389
388
 
390
 
#endif /* DRIZZLED_LEX_INPUT_STREAM_H */