Recovered from cvs revision 2007-05-03 15:14:00

This commit is contained in:
2007-05-04 00:14:00 +00:00
parent 6114d3ec90
commit 6f28e48ff9
4 changed files with 125 additions and 19 deletions

34
ase/test/awk/Awk.cpp Normal file
View File

@ -0,0 +1,34 @@
/*
* $Id: Awk.cpp,v 1.1 2007/05/02 15:07:33 bacon Exp $
*/
#include <ase/awk/Awk.h>
class TestAwk: public ASE::Awk
{
int openSource (SourceMode mode)
{
return 1;
}
int closeSource (SourceMode mode)
{
return 0;
}
ase_ssize_t readSource (ase_char_t* buf, ase_size_t count)
{
return 0;
}
ase_ssize_t writeSource (ase_char_t* buf, ase_size_t count);
{
return 0;
}
};
int main ()
{
}