You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
234 B
13 lines
234 B
3 years ago
|
#define GFLAGS_DLL_DECLARE_FLAG
|
||
|
|
||
|
#include <iostream>
|
||
|
#include <gflags/gflags_declare.h>
|
||
|
|
||
|
DECLARE_string(message); // in gflags_delcare_test.cc
|
||
|
|
||
|
void print_message();
|
||
|
void print_message()
|
||
|
{
|
||
|
std::cout << FLAGS_message << std::endl;
|
||
|
}
|