Rename Type to Kind.

This commit is contained in:
Peter Johnson
2016-11-15 23:54:50 -08:00
parent 3c7d8063f6
commit 791cabbc26
25 changed files with 265 additions and 265 deletions

View File

@@ -15,7 +15,7 @@ int main() {
llvm::outs() << "Properties:\n";
for (const auto& prop : camera.EnumerateProperties()) {
llvm::outs() << " " << prop.GetName() << ": ";
switch (prop.GetType()) {
switch (prop.GetKind()) {
case cs::VideoProperty::kBoolean:
llvm::outs() << "value=" << prop.Get()
<< " default=" << prop.GetDefault();