Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. class Item{
  2. };
  3.  
  4. class Proof{
  5. };
  6.  
  7. class ZwyklyItem : public Item{
  8. };
  9.  
  10. class LetItem : public Item{
  11. };
  12.  
  13. class ThusItem : public Item{
  14. };
  15.  
  16. class AssumeItem : public Item{
  17. };
  18.  
  19. class TakeItem : public Item{
  20. };
  21.  
  22. class ConsiderItem : public Item{
  23. };
  24.  
  25. class ReconsiderItem : public Item{
  26. };
  27. int main()
  28. {
  29. cout << "Hello world!" << endl;
  30. return 0;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement