source: trunk/gsdl/src/recpt/recptmain.cpp@ 146

Last change on this file since 146 was 144, checked in by rjmcnab, 25 years ago

Initial revision.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 560 bytes
Line 
1/**********************************************************************
2 *
3 * recptmain.cpp --
4 * Copyright (C) 1999 The New Zealand Digital Library Project
5 *
6 * PUT COPYRIGHT NOTICE HERE
7 *
8 * $Id: recptmain.cpp 144 1999-02-04 01:16:18Z rjmcnab $
9 *
10 *********************************************************************/
11
12/*
13 $Log$
14 Revision 1.1 1999/02/04 01:16:18 rjmcnab
15
16 Initial revision.
17
18 */
19
20
21#include "receptionist.h"
22#include "cgiwrapper.h"
23#include <assert.h>
24
25int main () {
26 receptionist *recpt = new receptionist;
27 assert (recpt != NULL);
28 cgiwrapper (*recpt, "");
29 return 0;
30}
31
Note: See TracBrowser for help on using the repository browser.