Advertisement
Darksider3

VokabelTrain

Nov 5th, 2012
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.58 KB | None | 0 0
  1. //main.cpp
  2.  
  3. /*
  4.  * File:   main.cpp
  5.  * Project: VokabelTrainer Inline Code
  6.  * Author: Leon Giesenkämper
  7.  *
  8.  * Created on 1. November 2012, 17:26
  9.  */
  10. #include <iostream>
  11. #include <string>
  12. using namespace std;
  13. #include "./central.cpp"
  14.  
  15. int main(int argc, char** argv) {
  16.     cout << "Deutsch -> Englisch Vokabeltrainer\r\n";
  17.     return 0;
  18. }
  19. //central.cpp
  20.  
  21. #include "./structures.cpp"
  22. #include "./de-en.cpp"
  23.  
  24. //structures.cpp
  25.  
  26. #include <string>
  27. #include <iostream>
  28. #include <vector>
  29. using namespace std;
  30. struct vtl{
  31.     string word;
  32.     string translatedword;
  33. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement