From 02c187fd3141203024b6f359ec714c0b804583c0 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sat, 19 Mar 2016 14:40:21 -0400 Subject: Nouns with any uppercase letters are now considered proper --- lib/noun.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/noun.h') diff --git a/lib/noun.h b/lib/noun.h index da76866..fbc2f9e 100644 --- a/lib/noun.h +++ b/lib/noun.h @@ -79,6 +79,8 @@ namespace verbly { noun_query& is_proper(bool _arg); noun_query& is_not_proper(bool _arg); + + noun_query& is_instance(bool _arg); noun_query& instance_of(const noun& _noun); noun_query& not_instance_of(const noun& _noun); @@ -149,6 +151,8 @@ namespace verbly { bool _is_proper = false; bool _is_not_proper = false; + + bool _is_instance = false; std::list _instance_of; std::list _not_instance_of; -- cgit 1.4.1