// $RCSfile: TopAccountingAdapter.h,v $
#ifndef TopAccountingAdapter_h
#define TopAccountingAdapter_h

#include "AccountingAdapter.h"
#include "TopAccounting.h"

class TopAccountingAdapter
             : public AccountingAdapter {
public:
  virtual void
  postReceivable(CreditPayment *p);

  virtual void postSale(Reservation *r);

  virtual ~TopAccountingAdapter();

  TopAccountingAdapter();

  TopAccountingAdapter(
          const TopAccountingAdapter & x);

private:
  TopAccounting *accounts;
};

#endif
