Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #pragma once
  2.  
  3. #ifdef BUILD_DLL
  4. #define PORTABLE_DLL_DECL __declspec(dllexport)
  5. #else
  6. #define PORTABLE_DLL_DECL __declspec(dllimport)
  7. #endif
  8.  
  9. #include <iostream>
  10. #include "Tnode.h"
  11.  
  12. class PORTABLE_DLL_DECL BinaryTree
  13. {
  14. public:
  15. Tnode *root;
  16.  
  17. void insertWord(const char* word);
  18. void printTree() const;
  19. void deleteTree();
  20. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement