• This project
    • Loading...
  • Sign in

조성현 / graph-visualization

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • graph-visualization
  • PaperGraph
  • json_processor.h
  • 조성현's avatar
    피인용 카운트 추가 · c35c7fc3
    c35c7fc3 Browse Files
    조성현 authored 2017-06-21 18:05:19 +0900
json_processor.h 299 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#pragma once
#include "stdafx.h"

class json_processor
{
	//private var
private:
	rapidjson::Document document;

	//constructor, destructor
public:
	json_processor();
	~json_processor();

	//methods
public:
	void read_json(const std::string& json_str);
	bool is_ok();
	int get_citation_count();
};