repo.or.cz
/
gdipp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use One-Time Initialization for glyph run caching to avoid duplicate glyph run genera...
[gdipp.git]
/
gdipp_config
/
proc_config_criteria.h
blob
fde95d189b39cc8c5a838da7028cf9df99c0727e
1
#pragma once
2
3
namespace
gdipp
4
{
5
6
class
proc_config_criteria
7
{
8
public
:
9
proc_config_criteria
(
const void
*
node
);
10
bool
is_satisfied
(
const wchar_t
*
proc_name
)
const
;
11
12
private
:
13
std
::
wstring _proc_name
;
14
};
15
16
}