syntaxnet_sentence.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // Copyright 2017 Google Inc. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. // =============================================================================
  15. #ifndef NLP_SAFT_OPENSOURCE_DRAGNN_IO_SYNTAXNET_SENTENCE_H_
  16. #define NLP_SAFT_OPENSOURCE_DRAGNN_IO_SYNTAXNET_SENTENCE_H_
  17. #include "syntaxnet/sentence.pb.h"
  18. #include "syntaxnet/workspace.h"
  19. namespace syntaxnet {
  20. namespace dragnn {
  21. class SyntaxNetSentence {
  22. public:
  23. SyntaxNetSentence(std::unique_ptr<Sentence> sentence,
  24. std::unique_ptr<WorkspaceSet> workspace)
  25. : sentence_(std::move(sentence)), workspace_(std::move(workspace)) {}
  26. Sentence *sentence() const { return sentence_.get(); }
  27. WorkspaceSet *workspace() const { return workspace_.get(); }
  28. private:
  29. std::unique_ptr<Sentence> sentence_;
  30. std::unique_ptr<WorkspaceSet> workspace_;
  31. };
  32. } // namespace dragnn
  33. } // namespace syntaxnet
  34. #endif // NLP_SAFT_OPENSOURCE_DRAGNN_IO_SYNTAXNET_SENTENCE_H_