fork download
  1.  
  2. typedef long int int64_t;
  3.  
  4. namespace JavaWrapping {
  5.  
  6. struct javaAnnotationRetrieverWrapper{};
  7.  
  8. };
  9.  
  10. class NwPar {
  11. public:
  12. JavaWrapping::javaAnnotationRetrieverWrapper getAnnotationRetriever() const {
  13. return JavaWrapping::javaAnnotationRetrieverWrapper();
  14. }
  15. };
  16.  
  17. class TermToGeneCount {
  18. };
  19.  
  20. template<class E>
  21. class Dag {
  22. };
  23.  
  24. class DefaultNwBuilder {
  25. public:
  26. void getTermToGeneCount(const JavaWrapping::javaAnnotationRetrieverWrapper& annRetriever, Dag<int64_t>* dags, TermToGeneCount* tg, TermToGeneCount* tgn) const {
  27. }
  28.  
  29. void test(const NwPar& nwPar) {
  30. TermToGeneCount *tg = new TermToGeneCount();
  31. TermToGeneCount *tgn = new TermToGeneCount();
  32. Dag<int64_t>* dags = new Dag<int64_t>();
  33.  
  34. getTermToGeneCount(nwPar.getAnnotationRetriever(),dags,tg,tgn);
  35. }
  36. };
  37.  
  38. int main() {}
Success #stdin #stdout 0s 2848KB
stdin
Standard input is empty
stdout
Standard output is empty