// Copyright 2014 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #ifndef CORE_FXCRT_CFX_FILEACCESS_POSIX_H_ #define CORE_FXCRT_CFX_FILEACCESS_POSIX_H_ #include <stddef.h> #include <stdint.h> #include "build/build_config.h" #include "core/fxcrt/fileaccess_iface.h" #include "core/fxcrt/fx_types.h" #if !BUILDFLAG(IS_POSIX) #error "Included on the wrong platform" #endif class CFX_FileAccess_Posix final : public FileAccessIface { … }; #endif // CORE_FXCRT_CFX_FILEACCESS_POSIX_H_