• 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
  • bibtex_processor.h
  • 조성현's avatar
    중간저장4 · 08258573
    08258573
    조성현 authored 2017-06-21 16:34:10 +0900
bibtex_processor.h 333 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
#pragma once
#include "stdafx.h"

class bibtex_processor
{
	//private var
private:
	bibtex::BibTeXEntry entry;

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

	//methods
public:
	void read(const std::string& bibtex_string);
	bool get_value(const std::string& field_name, std::string& return_val);
};