~ubuntu-branches/ubuntu/wily/aspectc++/wily

« back to all changes in this revision

Viewing changes to AspectC++/tests/Bug242/OutputStream.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2005-12-23 10:49:40 UTC
  • Revision ID: james.westby@ubuntu.com-20051223104940-ig4klhoi991zs7km
Tags: upstream-0.99+1.0pre2
ImportĀ upstreamĀ versionĀ 0.99+1.0pre2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __OUTPUTSTREAM_H
 
2
#define __OUTPUTSTREAM_H
 
3
 
 
4
#include <stdio.h>
 
5
 
 
6
class OutputStream {
 
7
public:
 
8
  // uses the introduced attribute _fill
 
9
  void print_fill () { printf ("%c", _fill); }
 
10
};
 
11
 
 
12
#endif