filter.cpp 772 B

123456789101112131415161718192021222324252627282930
  1. // =====================================================================================
  2. //
  3. // Filename: filter.cpp
  4. //
  5. // Description:
  6. //
  7. // Version: 1.0
  8. // Created: Fri Apr 26 12:48:03 CST 2019
  9. // Revision: none
  10. // Compiler: g++
  11. //
  12. // Author: Jinkun Lin, jkunlin@gmail.com
  13. // Organization: School of EECS, Peking University
  14. //
  15. // =====================================================================================
  16. #include <fstream>
  17. #include <iostream>
  18. #include <string>
  19. #include <vector>
  20. using namespace std;
  21. int main(int argc, const char *argv[]) {
  22. ifstream instance_name_file(argv[1]);
  23. if (!instance_name_file) {
  24. std::cout << "instance_name_file open error" << std::endl;
  25. return 1;
  26. }
  27. return 0;
  28. }